home *** CD-ROM | disk | FTP | other *** search
/ PC Home 62 / PC Home 62.iso / win3 / vectrex / notes.txt < prev    next >
Encoding:
Text File  |  1996-05-11  |  374 b   |  22 lines

  1.  
  2. 12/5/96 Patch to pole position (pole.gam)
  3.  
  4. To fix write to invalid memory caused by program bug, see below
  5.  
  6. Used to be:
  7.  
  8. <0b66> f6 00 c8 LDB $00c8
  9. <0b69> ?? ?? TFR b,dp
  10.  
  11. $00c8 contains the value #$bd which screws up any direct page writes
  12.  
  13. Changed to:
  14.  
  15. <0b66> c6 c8    LDB #$c8
  16. <0b68> 12       NOP
  17. <0b69> ?? ??TFR b,dp
  18.  
  19. Old file renamed to pole.old
  20.  
  21.  
  22.